iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 11
1

大數據的入門工具NumPy
為什麼用NumPy,標準數學函式庫,適合資料科學
很多函式的根基例如 pandas

import numpy as np
myList = [123,True,5.0,4]
myListType = [type(item) for item in myList]

myArray = np.array([True ,"Bob" ,1.0 ,4])
myArrayTypeList = [type(item) for item in myArray]

結果numpy都用同資料型態存儲
這樣速度會會快很多

https://ithelp.ithome.com.tw/upload/images/20200926/20112100OyWOc2fiGQ.png


上一篇
Python - 函數
下一篇
Python - NumPy入門(ii)
系列文
大數據與AI研習實作與心得 30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言